home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cuj9205.zip / 1005092A < prev    next >
Text File  |  1992-06-02  |  119b  |  9 lines

  1.  
  2. Listing 4
  3.  
  4. ostream &operator<<(ostream &os, rational r)
  5.     {
  6.     os << '(' << r.num << '/' << r.denom << ')';
  7.     }
  8.  
  9.